home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-25 | 950 b | 33 lines | [TEXT/CWIE] |
- // ==================================================
- // CRadioButton.h
- // Copyright (C) 1996-1997 Mizutori Tetsuya
- // July 4, 1996; February 3, 1997.
- // ==================================================
- // All documents are pretty-printed in 10-point Geneva font.
-
-
- #pragma once
-
- #include <LStdControl.h>
- #include <LListener.h>
-
- class CRadioButton : public LStdRadioButton, public LListener {
-
- public:
- enum { class_ID = 'RadB' };
-
- static CRadioButton * CreateRadioButtonStream( LStream * inStream );
- CRadioButton();
- CRadioButton( const CRadioButton &inOriginal );
- CRadioButton( const SPaneInfo &inPaneInfo,
- MessageT inValueMessage, Int32 inValue,
- ResIDT inTextTraitsID, Str255 inTitle );
- CRadioButton( LStream * inStream );
- virtual ~CRadioButton();
-
- // Listen to CheckBox and change its Enable/Disable status
- virtual void ListenToMessage( MessageT inMessage, void * ioParam );
- };
-
- // end of definitions
-